home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000182_nospam@killspam.org_Fri Oct 28 10:19:16 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!panix!news.maxwell.syr.edu!elnk-pas-nf1!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!stamper.news.atl.earthlink.net!newsread2.news.atl.earthlink.net.POSTED!9477d3c5!not-for-mail
  2. From: <nospam@killspam.org>
  3. Newsgroups: comp.protocols.kermit.misc
  4. References: <1130281969.690396.82360@z14g2000cwz.googlegroups.com>
  5. Subject: Re: Connected-mode key bound macro
  6. Lines: 27
  7. X-Priority: 3
  8. X-MSMail-Priority: Normal
  9. X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
  10. X-RFC2646: Format=Flowed; Original
  11. X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
  12. Message-ID: <P6p8f.1109$2y.1089@newsread2.news.atl.earthlink.net>
  13. Date: Fri, 28 Oct 2005 12:48:47 GMT
  14. NNTP-Posting-Host: 24.148.161.18
  15. X-Complaints-To: abuse@earthlink.net
  16. X-Trace: newsread2.news.atl.earthlink.net 1130503727 24.148.161.18 (Fri, 28 Oct 2005 05:48:47 PDT)
  17. NNTP-Posting-Date: Fri, 28 Oct 2005 05:48:47 PDT
  18. Organization: EarthLink Inc. -- http://www.EarthLink.net
  19. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15427
  20.  
  21.  
  22. <dan.sandberg@gmail.com> wrote in message 
  23. news:1130281969.690396.82360@z14g2000cwz.googlegroups.com...
  24.  
  25. > using C-Kermit 8.0.211.  I'm trying to make so I can upload a
  26. > binary file with one keypress while in connected mode.
  27.  
  28. Not sure if I've got the question correctly, but I have never had a problem 
  29. with this using two scripts,
  30. one to set key and connect, the other to send the file - I'm reasonably sure 
  31. it would work as a macro
  32. definition (only one scriptfile needed) as well, but haven't tested  No 
  33. reason why properly scoped variables
  34. wouldn't work for the filename parameter to extend to variable filenames, 
  35. i.e. current mouse selection etc..
  36.  
  37. ;set (`) key (below the tilde on my keyboard :)
  38. set key 96 take /home/sendfile.ksc ;
  39. set host ..........
  40.  
  41.  
  42. where /home/sendfile.ksc =
  43.   kermitshbang line
  44.   send /binary filename
  45.  
  46.  
  47.